Seal GtkTreeSelection.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:24 +0000 (11:01 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:24 +0000 (11:01 +0000)
* gtk/gtktreeselection.h: Seal all member fields.

svn path=/trunk/; revision=20528

gtk/gtktreeselection.h

index b8c864d51f60dd27e91d73657a0f8b8d96c2c1db..04320e4b3c9b7b7204be47fcebf2e7bc50397c89 100644 (file)
@@ -54,11 +54,11 @@ struct _GtkTreeSelection
 
   /*< private >*/
 
-  GtkTreeView *tree_view;
-  GtkSelectionMode type;
-  GtkTreeSelectionFunc user_func;
-  gpointer user_data;
-  GDestroyNotify destroy;
+  GtkTreeView *GSEAL (tree_view);
+  GtkSelectionMode GSEAL (type);
+  GtkTreeSelectionFunc GSEAL (user_func);
+  gpointer GSEAL (user_data);
+  GtkDestroyNotify GSEAL (destroy);
 };
 
 struct _GtkTreeSelectionClass